Revision: package-framework--stig--1.0--patch-6
Archive: stig@brautaset.org--arwen-03
Creator: Stig Brautaset <stig@brautaset.org>
Date: Sun Apr  6 13:13:37 BST 2003
Standard-date: 2003-04-06 12:13:37 GMT
Summary: add `ignore-files' variable to library-objects.mk 
Keywords: 
New-files: {arch}/package-framework/package-framework--stig/package-framework--stig--1.0/stig@brautaset.org--arwen-03/patch-log/patch-6
Modified-files: build-tools/Makefiles/library-objects.mk
New-patches: stig@brautaset.org--arwen-03/package-framework--stig--1.0--patch-6

Add `ignore-files' variable to library-objects.mk. The reasoning
behind this is that we now can do stuff like:

	# Build foo by default, but have an option to turn it off
	ifeq ($(cfg__foo), 1)

	mains           := foo.c foo-gui.c
	libs            := $(objroot)/bar/libbar.a -lglut 

	else

	mains           := foo.c
	ignore-files    := foo-gui.c
	libs            := $(objroot)/bar/libbar.a 

	endif

